
[dbo].[RecurringDonationExpectedPaymentStatusRef]
CREATE TABLE [dbo].[RecurringDonationExpectedPaymentStatusRef]
(
[RecurringDonationExpectedPaymentStatusCode] [smallint] NOT NULL,
[RecurringDonationExpectedPaymentStatusName] [nvarchar] (40) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[RecurringDonationExpectedPaymentStatusDesc] [nvarchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[RecurringDonationExpectedPaymentStatusRef] ADD CONSTRAINT [PK_RecurringDonationExpectedPaymentStatusRef] PRIMARY KEY CLUSTERED ([RecurringDonationExpectedPaymentStatusCode]) ON [PRIMARY]
GO
GRANT REFERENCES ON [dbo].[RecurringDonationExpectedPaymentStatusRef] TO [IMIS]
GRANT SELECT ON [dbo].[RecurringDonationExpectedPaymentStatusRef] TO [IMIS]
GRANT INSERT ON [dbo].[RecurringDonationExpectedPaymentStatusRef] TO [IMIS]
GRANT DELETE ON [dbo].[RecurringDonationExpectedPaymentStatusRef] TO [IMIS]
GRANT UPDATE ON [dbo].[RecurringDonationExpectedPaymentStatusRef] TO [IMIS]
GO